home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / vm / ds5000.md / vmMachInt.h < prev    next >
C/C++ Source or Header  |  1990-10-08  |  1KB  |  31 lines

  1. /*
  2.  * vmMachInt.h
  3.  *
  4.  *         Internal machine dependent virtual memory data structures and
  5.  *    procedure headers.
  6.  *
  7.  * Copyright (C) 1989 Digital Equipment Corporation.
  8.  * Permission to use, copy, modify, and distribute this software and
  9.  * its documentation for any purpose and without fee is hereby granted,
  10.  * provided that the above copyright notice appears in all copies.
  11.  * Digital Equipment Corporation makes no representations about the
  12.  * suitability of this software for any purpose.  It is provided "as is"
  13.  * without express or implied warranty.
  14.  *
  15.  * $Header: /sprite/src/kernel/vm/ds3100.md/RCS/vmMachInt.h,v 9.1 90/09/11 10:46:52 shirriff Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _VMMACHINT
  19. #define _VMMACHINT
  20.  
  21. /*
  22.  * Assembly language routines in vmPmaxAsm.s.
  23.  */
  24. extern ReturnStatus VmMachDoCopy _ARGS_((register int numBytes,
  25.     Address sourcePtr, Address destPtr));
  26. extern int VmMachCopyEnd _ARGS_((void));
  27. extern int VmMachWriteTLB _ARGS_((unsigned lowEntry, unsigned highEntry));
  28. extern void VmMachSetPID _ARGS_((int pid));
  29.  
  30. #endif /* _VMMACHINT */
  31.